85b6aece11a023103417d7da89d70d7e6e8b1967,plugins/de.ovgu.featureide.core.featurehouse/src/de/ovgu/featureide/featurehouse/FujiSignaturesCreator.java,FujiSignaturesCreator,createSignatures,#IFeatureProject#Program#,111
Before Change
if (bodyDecl instanceof MethodDecl) {
MethodDecl method = (MethodDecl) bodyDecl;
modifierString = method.getModifiers().toString();
name = method.name();
TypeDecl type = method.type();
After Change
MethodDecl method = (MethodDecl) bodyDecl;
// get modifiers
StringBuilder bodyModifierSB = new StringBuilder();
for (Modifier modifier : method.getModifiers().getModifierList()) {
bodyModifierSB.append(modifier.getID());
}
modifierString = bodyModifierSB.toString();
name = method.name();
TypeDecl type = method.type();